home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 412 b | 32 lines | [TEXT/MPCC] |
- // APane.cpp
-
-
- #include "APane.h"
- #include "ScreenTarget.h"
-
- unsigned char byteData[] = {
- 0xff, 0xfd, 0xfb, 0xf9,
- 0xf7, 0xf5, 0xf3, 0xf1,
- 0xef, 0xed, 0xeb, 0xe9,
- 0xe7, 0xe5, 0xe3, 0xe1,
- };
-
-
- APane *
- APane::CreateAPaneStream(
- LStream *stream)
- {
- return new APane(stream);
- }
-
-
- void
- APane::DrawSelf()
- {
- WindowPtr window;
- GetPort(&window);
- ScreenTarget foo(window);
-
- foo.PutData(byteData, 4, 4, 4, 0, 0);
- }
-